home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevepsc.c < prev    next >
C/C++ Source or Header  |  1996-11-01  |  14KB  |  459 lines

  1. /* Copyright (C) 1989, 1992, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevepsc.c */
  20. /* Epson color dot-matrix printer driver by dave@exlog.com */
  21. #include "gdevprn.h"
  22.  
  23. /*
  24.  * For 9-pin printers, you may select
  25.  *   X_DPI = 60, 120, or 240
  26.  *   Y_DPI = 60 or 72
  27.  * For 24-pin printers, you may select
  28.  *   X_DPI = 60, 120, 180, 240, or 360
  29.  *   Y_DPI = 60, 72, 180, or 216
  30.  * Note that a given printer implements *either* Y_DPI = 60 | 180 *or*
  31.  * Y_DPI = 72 | 216; no attempt is made to check this here.
  32.  * Note that X_DPI = 180 or 360 requires Y_DPI > 100;
  33.  * this isn't checked either.  Finally, note that X_DPI=240 and
  34.  * X_DPI=360 are double-density modes requiring two passes to print.
  35.  *
  36.  * The values of X_DPI and Y_DPI may be set at compile time:
  37.  * see gdevs.mak.
  38.  * 
  39.  * At some time in the future, we could simulate 24-bit output on
  40.  * 9-pin printers by using fractional vertical positioning;
  41.  * we could even implement an X_DPI=360 mode by using the
  42.  * ESC++ command that spaces vertically in units of 1/360"
  43.  * (not supported on many printers.)
  44.  */
  45.  
  46. #ifndef X_DPI
  47. #  define X_DPI 180            /* pixels per inch */
  48. #endif
  49. #ifndef Y_DPI
  50. #  define Y_DPI 180            /* pixels per inch */
  51. #endif
  52.  
  53. /*
  54. **    Colors for EPSON LQ-2550.
  55. **
  56. **    We map VIOLET to BLUE since this is the best we can do.
  57. */
  58. #define BLACK    0
  59. #define MAGENTA 1
  60. #define CYAN    2
  61. #define VIOLET    3
  62. #define YELLOW    4
  63. #define RED        5
  64. #define GREEN    6
  65. #define WHITE    7
  66.  
  67. /*
  68. **    The offset in this array correspond to
  69. **    the ESC-r n value
  70. */
  71. static char rgb_color[2][2][2] =    {
  72.     BLACK, VIOLET, GREEN,
  73.     CYAN, RED, MAGENTA,
  74.     YELLOW, WHITE,
  75.     };
  76.  
  77. /* Map an RGB color to a printer color. */
  78. #define cv_shift (sizeof(gx_color_value) * 8 - 1)
  79. private gx_color_index
  80. epson_map_rgb_color(gx_device *dev,
  81.   gx_color_value r, gx_color_value g, gx_color_value b)
  82. {
  83. if (gx_device_has_color(dev))
  84.     {
  85. /* use ^7 so WHITE is 0 for internal calculations */
  86.     return (gx_color_index)rgb_color[r >> cv_shift][g >> cv_shift][b >> cv_shift] ^ 7;    
  87.     }
  88. else
  89.     {
  90.     return gx_default_map_rgb_color(dev, r, g, b);
  91.     }
  92. }
  93.  
  94. /* Map the printer color back to RGB. */
  95. private int
  96. epson_map_color_rgb(gx_device *dev, gx_color_index color,
  97.   gx_color_value prgb[3])
  98. {
  99. #define c1 gx_max_color_value
  100. if (gx_device_has_color(dev))
  101.     switch ((ushort)color ^ 7)
  102.         {
  103.         case BLACK:
  104.             prgb[0] = 0; prgb[1] = 0; prgb[2] = 0; break;
  105.         case VIOLET:
  106.             prgb[0] = 0; prgb[1] = 0; prgb[2] = c1; break;
  107.         case GREEN:
  108.             prgb[0] = 0; prgb[1] = c1; prgb[2] = 0; break;
  109.         case CYAN:
  110.             prgb[0] = 0; prgb[1] = c1; prgb[2] = c1; break;
  111.         case  RED:
  112.             prgb[0] = c1; prgb[1] = 0; prgb[2] = 0; break;
  113.         case  MAGENTA:
  114.             prgb[0] = c1; prgb[1] = 0; prgb[2] = c1; break;
  115.         case YELLOW:
  116.             prgb[0] = c1; prgb[1] = c1; prgb[2] = 0; break;
  117.         case  WHITE:
  118.             prgb[0] = c1; prgb[1] = c1; prgb[2] = c1; break;
  119.         }
  120.     else
  121.         return gx_default_map_color_rgb(dev, color, prgb);
  122.     return 0;
  123. }
  124.  
  125. /* The device descriptor */
  126. private dev_proc_print_page(epsc_print_page);
  127.  
  128. private gx_device_procs epson_procs =
  129.   prn_color_procs(gdev_prn_open, gdev_prn_output_page, gdev_prn_close,
  130.     epson_map_rgb_color, epson_map_color_rgb); 
  131.  
  132. gx_device_printer far_data gs_epsonc_device =
  133.   prn_device(epson_procs, "epsonc",
  134.     DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
  135.     X_DPI, Y_DPI,
  136.     0, 0, 0.25, 0,        /* margins */
  137.     3, epsc_print_page);
  138.  
  139. /* ------ Internal routines ------ */
  140.  
  141. /* Forward references */
  142. private void epsc_output_run(P6(byte *, int, int, char, FILE *, int));
  143.  
  144. /* Send the page to the printer. */
  145. #define DD 0x80                /* double density flag */
  146. private int
  147. epsc_print_page(gx_device_printer *pdev, FILE *prn_stream)
  148. {    static char graphics_modes_9[5] =
  149.        {    -1, 0 /*60*/, 1    /*120*/, -1, DD+3 /*240*/
  150.        };
  151.     static char graphics_modes_24[7] =
  152.        {    -1, 32 /*60*/, 33 /*120*/, 39 /*180*/,
  153.         -1, -1, DD+40 /*360*/
  154.        };
  155.     int y_24pin = pdev->y_pixels_per_inch > 72;
  156.     int y_mult = (y_24pin ? 3 : 1);
  157.     int line_size = (pdev->width + 7) >> 3;    /* always mono */
  158.     int in_size = line_size * (8 * y_mult);
  159.     byte *in = (byte *)gs_malloc(in_size+1, 1, "epsc_print_page(in)");
  160.     int out_size = ((pdev->width + 7) & -8) * y_mult;
  161.     byte *out = (byte *)gs_malloc(out_size+1, 1, "epsc_print_page(out)");
  162.     int x_dpi = pdev->x_pixels_per_inch;
  163.     char start_graphics =
  164.         (y_24pin ? graphics_modes_24 : graphics_modes_9)[x_dpi / 60];
  165.     int first_pass = (start_graphics & DD ? 1 : 0);
  166.     int last_pass = first_pass * 2;
  167.     int dots_per_space = x_dpi / 10;    /* pica space = 1/10" */
  168.     int bytes_per_space = dots_per_space * y_mult;
  169.     int skip = 0, lnum = 0, pass;
  170. /* declare color buffer and related vars */
  171.     byte *color_in;
  172.     int color_line_size, color_in_size;
  173.     int spare_bits = (pdev->width % 8);    /* left over bits to go to margin */
  174.     int whole_bits = pdev->width - spare_bits;
  175.  
  176.     /* Check allocations */
  177.     if ( in == 0 || out == 0 )
  178.        {    if ( in ) gs_free((char *)in, in_size+1, 1, "epsc_print_page(in)");
  179.         if ( out ) gs_free((char *)out, out_size+1, 1, "epsc_print_page(out)");
  180.         return -1;
  181.        }
  182.  
  183.     /* Initialize the printer and reset the margins. */
  184.     fwrite("\033@\033P\033l\000\033Q\377\033U\001\r", 1, 14, prn_stream);
  185.  
  186. /*    Create color buffer */
  187.     if (gx_device_has_color(pdev))
  188.         {
  189.         color_line_size = gdev_mem_bytes_per_scan_line((gx_device *)pdev);
  190.         color_in_size = color_line_size * (8 * y_mult);
  191.         if((color_in = (byte *)gs_malloc(color_in_size+1, 1,
  192.             "epsc_print_page(color)")) == 0)
  193.             {
  194.             gs_free((char *)in, in_size+1, 1, "epsc_print_page(in)");
  195.             gs_free((char *)out, out_size+1, 1, "epsc_print_page(out)");
  196.             return(-1);
  197.             }
  198.         }
  199.     else
  200.         {
  201.         color_in = in;
  202.         color_in_size = in_size;
  203.         color_line_size = line_size;
  204.         }
  205.  
  206.     /* Print lines of graphics */
  207.     while ( lnum < pdev->height )
  208.        {
  209.         int lcnt;
  210.         byte *nextcolor = NULL;    /* position where next color appears */
  211.         byte *nextmono = NULL;    /* position to map next color */
  212.  
  213.         /* Copy 1 scan line and test for all zero. */
  214.         gdev_prn_copy_scan_lines(pdev, lnum, color_in, color_line_size);
  215.  
  216.         if ( color_in[0] == 0 &&
  217.              !memcmp((char *)color_in, (char *)color_in + 1, color_line_size - 1)
  218.            )
  219.            {    lnum++;
  220.             skip += 3 / y_mult;
  221.             continue;
  222.            }
  223.  
  224.         /* Vertical tab to the appropriate position. */
  225.         while ( skip > 255 )
  226.            {    fputs("\033J\377", prn_stream);
  227.             skip -= 255;
  228.            }
  229.         if ( skip )
  230.             fprintf(prn_stream, "\033J%c", skip);
  231.  
  232.         /* Copy the rest of the scan lines. */
  233.         lcnt = 1 + gdev_prn_copy_scan_lines(pdev, lnum + 1, 
  234.             color_in + color_line_size, color_in_size - color_line_size);
  235.  
  236.         if ( lcnt < 8 * y_mult )
  237.             {
  238.             memset((char *)(color_in + lcnt * color_line_size), 0,
  239.                 color_in_size - lcnt * color_line_size);
  240.             if (gx_device_has_color(pdev))    /* clear the work buffer */
  241.                 memset((char *)(in + lcnt * line_size), 0,
  242.                     in_size - lcnt * line_size);
  243.             }
  244.             
  245. /*
  246. **    We need to create a normal epson scan line from our color scan line
  247. **    We do this by setting a bit in the "in" buffer if the pixel byte is set
  248. **    to any color.  We then search for any more pixels of that color, setting
  249. **    "in" accordingly.  If any other color is found, we save it for the next
  250. **    pass.  There may be up to 7 passes.
  251. **    In the future, we should make the passes so as to maximize the
  252. **    life of the color ribbon (i.e. go lightest to darkest).
  253. */
  254.         do
  255.         {
  256.         byte *inp = in;
  257.         byte *in_end = in + line_size;
  258.         byte *out_end = out;
  259.         byte *out_blk;
  260.         register byte *outp;
  261.  
  262.         if (gx_device_has_color(pdev))
  263.             {
  264.             register i,j;
  265.             register byte *outbuf, *realbuf;
  266.             byte current_color;
  267.             int end_next_bits = whole_bits;
  268.             int lastbits;
  269.             
  270. /*    Move to the point in the scanline that has a new color */
  271.             if (nextcolor)
  272.                 {
  273.                 realbuf = nextcolor;
  274.                 outbuf = nextmono;
  275.                 memset((char *)in, 0, (nextmono - in));
  276.                 i = nextcolor - color_in;
  277.                 nextcolor = NULL;
  278.                 end_next_bits = (i / color_line_size) * color_line_size
  279.                     + whole_bits;
  280.                 }
  281.             else
  282.                 {
  283.                 i = 0;
  284.                 realbuf = color_in;
  285.                 outbuf = in;
  286.                 nextcolor = NULL;
  287.                 }
  288. /*    move thru the color buffer, turning on the appropriate
  289. **    bit in the "mono" buffer", setting pointers to the next
  290. **    color and changing the color output of the epson
  291. */
  292.             for (current_color = 0; i <= color_in_size && outbuf < in + in_size; outbuf++)
  293.                 {
  294. /*    Remember, line_size is rounded up to next whole byte
  295. **    whereas color_line_size is the proper length
  296. **    We only want to set the proper bits in the last line_size byte.
  297. */
  298.                 if (spare_bits && i == end_next_bits)
  299.                     {
  300.                     end_next_bits = whole_bits + i + spare_bits;
  301.                     lastbits = 8 - spare_bits;
  302.                     }
  303.                 else
  304.                     lastbits = 0;
  305.  
  306.                 for (*outbuf = 0, j = 8; --j >= lastbits && i <= color_in_size;
  307.                     realbuf++,i++)
  308.                     {
  309.                     if (*realbuf)
  310.                         {
  311.                         if (current_color > 0)
  312.                             {
  313.                             if (*realbuf == current_color)
  314.                                 {
  315.                                 *outbuf |= 1 << j;
  316.                                 *realbuf = 0;    /* throw this byte away */
  317.                                 }
  318.                     /* save this location for next pass */
  319.                             else if (nextcolor == NULL)
  320.                                 {
  321.                                 nextcolor = realbuf - (7 - j);
  322.                                 nextmono = outbuf;
  323.                                 }
  324.                             }
  325.                         else 
  326.                             {
  327.                             *outbuf |= 1 << j;
  328.                             current_color = *realbuf;    /* set color */
  329.                             *realbuf = 0;
  330.                             }
  331.                         }
  332.                     }
  333.                 }
  334.             *outbuf = 0;        /* zero the end, for safe keeping */
  335. /*    Change color on the EPSON, current_color must be set
  336. **    but lets check anyway
  337. */
  338.             if (current_color)
  339.                 fprintf(prn_stream,"\033r%d",current_color ^ 7);
  340.             }
  341.  
  342.         /* We have to 'transpose' blocks of 8 pixels x 8 lines, */
  343.         /* because that's how the printer wants the data. */
  344.         /* If we are in a 24-pin mode, we have to transpose */
  345.         /* groups of 3 lines at a time. */
  346.  
  347.         if ( y_24pin )
  348.          { for ( ; inp < in_end; inp++, out_end += 24 )
  349.             { gdev_prn_transpose_8x8(inp, line_size, out_end, 3);
  350.               gdev_prn_transpose_8x8(inp + line_size * 8, line_size, out_end + 1, 3);
  351.               gdev_prn_transpose_8x8(inp + line_size * 16, line_size, out_end + 2, 3);
  352.             }
  353.            /* Remove trailing 0s. */
  354.            while ( out_end > out && out_end[-1] == 0 &&
  355.                out_end[-2] == 0 && out_end[-3] == 0
  356.              )
  357.              out_end -= 3;
  358.          }
  359.         else
  360.          { for ( ; inp < in_end; inp++, out_end += 8 )
  361.             { gdev_prn_transpose_8x8(inp, line_size, out_end, 1);
  362.             }
  363.            /* Remove trailing 0s. */
  364.            while ( out_end > out && out_end[-1] == 0 )
  365.              out_end--;
  366.          }
  367.  
  368.         for ( pass = first_pass; pass <= last_pass; pass++ )
  369.            {
  370.         for ( out_blk = outp = out; outp < out_end; )
  371.          { /* Skip a run of leading 0s. */
  372.            /* At least 10 are needed to make tabbing worth it. */
  373.            /* We do everything by 3's to avoid having to make */
  374.            /* different cases for 9- and 24-pin. */
  375.  
  376.            if ( *outp == 0 && outp + 12 <= out_end &&
  377.             outp[1] == 0 && outp[2] == 0 &&
  378.             (outp[3] | outp[4] | outp[5]) == 0 &&
  379.             (outp[6] | outp[7] | outp[8]) == 0 &&
  380.             (outp[9] | outp[10] | outp[11]) == 0
  381.               )
  382.             {    byte *zp = outp;
  383.             int tpos;
  384.             byte *newp;
  385.             outp += 12;
  386.             while ( outp + 3 <= out_end && *outp == 0 &&
  387.                 outp[1] == 0 && outp[2] == 0
  388.                   )
  389.                 outp += 3;
  390.             tpos = (outp - out) / bytes_per_space;
  391.             newp = out + tpos * bytes_per_space;
  392.             if ( newp > zp + 10 )
  393.              { /* Output preceding bit data. */
  394.                if ( zp > out_blk )    /* only false at */
  395.                         /* beginning of line */
  396.                  epsc_output_run(out_blk, (int)(zp - out_blk),
  397.                         y_mult, start_graphics,
  398.                         prn_stream, pass);
  399.                /* Tab over to the appropriate position. */
  400.                fprintf(prn_stream, "\033D%c%c\t", tpos, 0);
  401.                out_blk = outp = newp;
  402.              }
  403.            }
  404.           else
  405.             outp += y_mult;
  406.          }
  407.         if ( outp > out_blk )
  408.             epsc_output_run(out_blk, (int)(outp - out_blk),
  409.                        y_mult, start_graphics,
  410.                        prn_stream, pass);
  411.  
  412.             fputc('\r', prn_stream);
  413.            }
  414.             } while (nextcolor);
  415.         skip = 24;
  416.         lnum += 8 * y_mult;
  417.        }
  418.  
  419.     /* Eject the page and reinitialize the printer */
  420.     fputs("\f\033@", prn_stream);
  421.  
  422.  
  423.     gs_free((char *)out, out_size+1, 1, "epsc_print_page(out)");
  424.     gs_free((char *)in, in_size+1, 1, "epsc_print_page(in)");
  425.     if (gx_device_has_color(pdev))
  426.         gs_free((char *)color_in, color_in_size+1, 1, "epsc_print_page(rin)");
  427.     return 0;
  428. }
  429.  
  430. /* Output a single graphics command. */
  431. /* pass=0 for all columns, 1 for even columns, 2 for odd columns. */
  432. private void
  433. epsc_output_run(byte *data, int count, int y_mult,
  434.   char start_graphics, FILE *prn_stream, int pass)
  435. {    int xcount = count / y_mult;
  436.     fputc(033, prn_stream);
  437.     if ( !(start_graphics & ~3) )
  438.        {    fputc("KLYZ"[start_graphics], prn_stream);
  439.        }
  440.     else
  441.        {    fputc('*', prn_stream);
  442.         fputc(start_graphics & ~DD, prn_stream);
  443.        }
  444.     fputc(xcount & 0xff, prn_stream);
  445.     fputc(xcount >> 8, prn_stream);
  446.     if ( !pass )
  447.         fwrite((char *)data, 1, count, prn_stream);
  448.     else
  449.        {    /* Only write every other column of y_mult bytes. */
  450.         int which = pass;
  451.         byte *dp = data;
  452.         register int i, j;
  453.         for ( i = 0; i < xcount; i++, which++ )
  454.           for ( j = 0; j < y_mult; j++, dp++ )
  455.            {    putc(((which & 1) ? *dp : 0), prn_stream);
  456.            }
  457.        }
  458. }
  459.